88b0a7a45efaf14f19fe2b36c78c5aa75439fc9c,idea/tests/org/jetbrains/jet/cfg/JetControlFlowTest.java,JetControlFlowTest,processCFData,#String#Map#,91

Before Change


            FileUtil.writeToFile(expectedInstructionsFile, instructionDump.toString());
            fail("No expected instructions for " + name + " generated result is written into " + expectedInstructionsFileName);
        }
        String expectedInstructions = FileUtil.loadFile(expectedInstructionsFile);

        assertEquals(expectedInstructions, instructionDump.toString());

After Change


            FileUtil.writeToFile(expectedInstructionsFile, instructionDump.toString());
            fail("No expected instructions for " + name + " generated result is written into " + expectedInstructionsFileName);
        }
        String expectedInstructions = StringUtil.convertLineSeparators(FileUtil.loadFile(expectedInstructionsFile));

        assertEquals(expectedInstructions, instructionDump.toString());